| class LL_NODE{T} |
|---|
| **** | Private to LLIST{T} A node in a linked list which can hold data of type T. Implementation: Holds a pointer to the next element and a pointer to the data |
| attr data: T; |
|---|
| attr next: SAME; |
|---|
| attr data: T; |
|---|
| attr next: SAME; |
|---|
| create(t:T,n:SAME): SAME |
|---|
| is_eq(l:SAME): BOOL |
|---|